Rotate a point
Written by Paul Bourke |
![]() |
Rotation of a point in 3 dimensional space by theta about an arbitrary axes defined by a line between two points P1 = (x1,y1,z1) and P2 = (x2,y2,z2) can be achieved by the following steps
(2) rotate space about the x axis so that the rotation axis lies in the xz plane
(3) rotate space about the y axis so that the rotation axis lies along the z axis
(4) perform the desired rotation by theta about the z axis
(5) apply the inverse of step (3)
(6) apply the inverse of step (2)
(7) apply the inverse of step (1)
Note:
If the rotation axis is already aligned with the z axis then steps 2, 3, 5, and 6 need not be performed.
In all that follows a right hand coordinate system is assumed and rotations are positive when looking down the rotation axis towards the origin.
Symbols representing matrices will be shown in bold text.
The inverse of the rotation matrices below are particularly straightforward since the determinant is unity in each case.
All rotation angles are considered positive if anticlockwise looking down the rotation axis towards the origin.
Step 1
Translate space so that the rotation axis passes through the origin. This is accomplished by translating space by -P1 (-x1,-y1,-z1). The translation matrix T and the inverse T-1 (required for step 7) are given below
|
|
Step 2
Rotate space about the x axis so that the rotation axis lies in the xz plane. Let U = (a,b,c) be the unit vector along the rotation axis. and define d = sqrt(b2 + c2) as the length of the projection onto the yz plane. If d = 0 then the rotation axis is along the x axis and no additional rotation is necessary. Otherwise rotate the rotation axis so that is lies in the xz plane. The rotation angle to achieve this is the angle between the projection of rotation axis in the yz plane and the z axis. This can be calculated from the dot product of the z component of the unit vector U and its yz projection. The sine of the angle is determine by considering the cross product.
|
|
The rotation matrix Rx and the inverse Rx-1 (required for step 6) are given below
|
|
Step 3
Rotate space about the y axis so that the rotation axis lies along the positive z axis. Using the appropriate dot and cross product relationships as before the cosine of the angle is d, the sine of the angle is a. The rotation matrix about the y axis Ry and the inverse Ry-1 (required for step 5) are given below.
|
|
Step 4
Rotation about the z axis by t (theta) is Rz and is simply
Rz = | ![]() |
|
![]() |
The complete transformation to rotate a point (x,y,z) about the rotation axis to a new point (x`,y`,z`) is as follows, the forward transforms followed by the reverse transforms.
![]() |
|
![]() |
= | T-1 Rx-1 Ry-1 Rz Ry Rx T | ![]() |
|
![]() |
To rotate a 3D vector "p" by angle theta about a (unit) axis "r" one forms the quaternion
and the rotation quaternion
The rotated vector is the last three components of the quaternion
It is easy to see that rotation in the opposite direction (-theta) can be achieved by reversing the order of the multiplication.
Note also that the quaternian Q2 is of unit magnitude.